home *** CD-ROM | disk | FTP | other *** search
/ Super PC 34 / Super PC 34 (Shareware).iso / spc / UTIL / DJGPP2 / V2 / DJTST200.ZIP / tests / libc / crt0 / null.c < prev    next >
Encoding:
C/C++ Source or Header  |  1995-07-13  |  173 b   |  14 lines

  1. #include <crt0.h>
  2.  
  3. #ifdef NULLOK
  4. int _crt0_startup_flags = _CRT0_FLAG_NULLOK;
  5. #endif
  6.  
  7. int main()
  8. {
  9.   char *null;
  10.   null = (char *)0;
  11.   *null = 0;
  12.   return 0;
  13. }
  14.